home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 38 / Amiga Format CD38 (1999-03-15)(Future Publishing)(GB)(Track 1 of 3)[!][issue 1999-04].iso / -in_the_mag- / reader_requests / dice_v3.15 / include / varargs.h < prev   
C/C++ Source or Header  |  1999-01-26  |  286b  |  17 lines

  1.  
  2. /*
  3.  * $VER: varargs.h 1.0 (17.4.93)
  4.  *
  5.  * (c)Copyright 1992 Obvious Implementations Corp, All Rights Reserved
  6.  */
  7.  
  8. #ifndef VARARGS_H
  9. #define VARARGS_H
  10. #ifndef STDARG_H
  11. #include <stdarg.h>
  12. #define va_dcl long va_alist;
  13. #define va_start(pvar)    (pvar = (void *)(&va_alist))
  14. #endif
  15. #endif
  16.  
  17.